Search found 22 matches

by squirrely73
Fri Nov 10, 2017 1:26 pm
Forum: Open Source Nagios Projects
Topic: Nagios Stops reporting Every Night!
Replies: 9
Views: 4148

Re: Nagios Stops reporting Every Night!

That took care of it, removing host from downtime fixed issues.

Thanks, feel free to close the topic
by squirrely73
Tue Nov 07, 2017 2:11 pm
Forum: Open Source Nagios Projects
Topic: Nagios Stops reporting Every Night!
Replies: 9
Views: 4148

Re: Nagios Stops reporting Every Night!

So doing research on "Caught SIGSEGV shutting down" It seems to be related to a host in scheduled downtime i didn't think we had any in downtime but after looking through hosts i do see that 1 of them is scheduled for downtime and has been for sometime. The person before me just must have ...
by squirrely73
Tue Nov 07, 2017 8:47 am
Forum: Open Source Nagios Projects
Topic: Nagios Stops reporting Every Night!
Replies: 9
Views: 4148

Re: Nagios Stops reporting Every Night!

I've attached my config file along with the highlights of the messages and log file: It seems at Midnight i'm getting: Nov 7 00:00:00 wc-nagios nagios: Caught SIGSEGV, shutting down.. and that's when my monitoring ceases, everything looks fine if you go into the web interface to look at problems but...
by squirrely73
Mon Nov 06, 2017 10:17 am
Forum: Open Source Nagios Projects
Topic: Nagios Stops reporting Every Night!
Replies: 9
Views: 4148

Re: Nagios Stops reporting Every Night!

squirrely73 , Please upload you nagios log from: /usr/local/nagios/var/nagios.log and system log from /var/log/messages file. For the /usr/local/nagios/var/nagios.log the result is "no such file or directory exists" could it be in another location or loging isn't setup? I recently receive...
by squirrely73
Fri Nov 03, 2017 7:17 am
Forum: Open Source Nagios Projects
Topic: Nagios Stops reporting Every Night!
Replies: 9
Views: 4148

Nagios Stops reporting Every Night!

Stuck on trying to figure out why Nagios stops every night. Nagios 3.5.1 Running on Red Hat 4.4.7 Every morning for awhile I come in and Nagios appears to be running and showing information but nothing is actually updating anymore. When I issue the restart command I Get: Running Config Check....done...
by squirrely73
Wed Aug 02, 2017 7:23 am
Forum: Open Source Nagios Projects
Topic: How did Nagios update on it's own? How can I get running?
Replies: 21
Views: 8153

Re: How did Nagios update on it's own? How can I get running

Mystery solved... Change to: date >> update.log yum -y -x 'nagios*' upgrade >> update.log shutdown -r now >> update.log Running yum update and yum upgrade is redundant as they do the same thing. The difference is that yum upgrade removes obsolete packages. yum upgrade = yum update --obsoletes Thank...
by squirrely73
Tue Aug 01, 2017 4:04 pm
Forum: Open Source Nagios Projects
Topic: How did Nagios update on it's own? How can I get running?
Replies: 21
Views: 8153

Re: How did Nagios update on it's own? How can I get running

bolson wrote:Please post the contents of /root/update.sh

[root@wc-nagios ~]# cat /root/update.sh
date >> update.log
yum -y update >> update.log
yum -y upgrade >> update.log
shutdown -r now >> update.log
by squirrely73
Tue Aug 01, 2017 3:19 pm
Forum: Open Source Nagios Projects
Topic: How did Nagios update on it's own? How can I get running?
Replies: 21
Views: 8153

Re: How did Nagios update on it's own? How can I get running

bolson wrote:Do you have admin (root) privileges for this Nagios server? If so, as root run the following command:

Code: Select all

for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
Then for each user that has a crontab, run this command:

Code: Select all

crontab -u USERNAME -e
And post the results.
Results
by squirrely73
Tue Aug 01, 2017 1:19 pm
Forum: Open Source Nagios Projects
Topic: How did Nagios update on it's own? How can I get running?
Replies: 21
Views: 8153

Re: How did Nagios update on it's own? How can I get running

Thanks! Now we all know what version(s) we're dealing with! And to be clear that is where it is right now after reverting to the previous VM snapshot. I've added the exclude=nagios* into the main /etc/yum.conf file, if it doesn't update in the morning than i guess that fixes the auto-update issue i...